Vcomp_native_path_postfix is declared only in native configuration.
static Lisp_Object
effective_load_path (void)
{
- if (!NATIVE_COMP_FLAG)
- return Vload_path;
-
+#ifndef HAVE_NATIVE_COMP
+ return Vload_path;
+#else
Lisp_Object lp = Vload_path;
Lisp_Object new_lp = Qnil;
FOR_EACH_TAIL (lp)
new_lp = Fcons (el, new_lp);
}
return Fnreverse (new_lp);
+#endif
}
/* Return true if STRING ends with SUFFIX. */